home *** CD-ROM | disk | FTP | other *** search
Text File | 1992-02-22 | 1.9 KB | 65 lines | [TEXT/ttxt] |
-
-
-
- How to use MPW version of PCBASIC
-
- 1/27/92
-
-
- These are very abreviated instructions for using the shareware version
- of PCBASIC. Refer to the PCBASIC Manual for more detailed information.
-
-
- REQUIREMENTS
-
- This version requires the Macintosh Programmers Workshop, and the
- MPW Assembler. If you do not have MPW, you can use the Stand Alone
- version of PCBASIC on the same diskette.
-
-
- INSTALLATION
-
- 1) Move the MPW tool, "PCBASIC", into your MPW "Tools" folder.
-
- 2) Move the "BIncludes" folder into your MPW folder.
-
- 3) Copy the demo program, "PCBASIC Demo" from the MPW Section of
- the PCBASIC diskette, to a convenient spot on your disk.
-
- 3) Add these two lines to the "UserStartup" file in your MPW folder:
-
- Set BIncludes "{MPW}BIncludes:"
- export BIncludes
-
- 4) Set the Macintosh to 24-bit mode if necessary. This requirement
- is only for compiling. Your completed BASIC applications will
- run in 32-bit mode.
-
- 5) Restart MPW
-
-
- COMPILING "PCBASICDemo"
-
- 1) Set the directory to the "PCBASIC Demo" folder. Use the version
- in the MPW section of the PCBASIC diskette. You can use the
- "Set Directory…" command from the MPW Directory menu.
-
- 2) To compile "PCBASICDemo.b", copy the following line to your
- Worksheet and press [Enter]:
-
- PCBASIC PCBASICDemo.b -c DEMO -b
-
- PCBASIC will compile the BASIC source and write the MPW commands
- needed to Assemble and Link with the default resource file.
- We call these commands the "Build Lines".
-
- NOTE:
- You could also type "PCBASIC…" and press [Enter] to start the
- MPW "Commando" tool on PCBASIC. Select "Make Build Lines" and
- set the Creator to "DEMO"
-
- 3) Select all of the Build Lines, starting with "ASM -w …",
- and press [Enter]. If everything is correct, MPW will
- complete and run the PCBASICDemo program.
-
-